home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mtools.postinst < prev    next >
Encoding:
Text File  |  2008-05-29  |  502 b   |  20 lines

  1. #! /bin/sh
  2.  
  3. # Clean up old conffiles
  4. if [ -f /etc/mtools.ref ]; then
  5.     rm /etc/mtools.ref
  6. fi
  7.  
  8. # Convert floppy devices in mtools.conf if devfs is used
  9. if [ -e /dev/.devfsd -a -f /etc/mtools.conf ]; then
  10.     sed 's_/dev/fd_/dev/floppy/_g' < /etc/mtools.conf > /etc/mtools.conf.dpkg-tmp
  11.     mv -fb /etc/mtools.conf.dpkg-tmp /etc/mtools.conf
  12. fi
  13.  
  14. # Automatically added by dh_installinfo
  15. if [ "$1" = "configure" ]; then
  16.     install-info --quiet /usr/share/info/mtools.info
  17. fi
  18. # End automatically added section
  19.  
  20.